@charset "UTF-8";

body {
  background-image: linear-gradient(to bottom, #0b1d3f 0%, #1f4287 42%, #264fa1 100%);
  font-weight: 300;
}

/*style*/
.btn_blue {
  background: #1170B9;
  color: #fff;
  border-radius: 20px;
  width: 100%;
  display: block;
  text-align: center;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
}

.gray_effect {
  background: #AAAAAA;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/*nav*/
.nav {
  width: 100%;
  position: fixed;
  height: 6.25rem;
  line-height: 6.25rem;
  color: #fff;
  z-index: 100;
  display: flex;
  justify-content: space-between;
}

.nav.after {
  background-color: #091834;
}

.nav .center_nav {
  width: 60%;
  text-align: center;
  margin: 0 auto;
}

.nav .center_nav a {
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  padding: 0 12px;
  font-weight: 500;
}

.nav .center_nav a.sign_in {
  display: none;
}

.nav .center_nav .logged_in_mobile {
  display: none;
}


.nav .logo {
  width: 20%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 3rem;
}

.nav .logo img {
  width: 12.5rem;
  max-width: 100%;
}

.nav .link_right {
  width: 20%;
  text-align: right;
  padding-right: 3rem;
  height: 100%;
  line-height: 100px;
}


.nav .link_right .logged_in a {
  margin-right: 3rem;
}

.nav .link_right a {
  color: #fff;
}

.nav .link_right .hamburger {
  display: none;
}

.wrapper {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-height: calc(100vh - 100px);
  padding-top: 180px;
}

.wrapper.kv {
  height: 53vw;
  min-height: auto;
  background: url('../img/kv_pc.jpg') no-repeat;
  background-size: cover;
}

.kv-bottom-bg {
  width: 100%;
  position: relative;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(30, 87, 153, 0) 0%, rgb(9 17 40) 75%, rgb(9 21 42) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#001e5799', endColorstr='#09142a', GradientType=0);
  height: 15.5vw;
  margin-top: -15vw;
}

/*input*/
input {
  outline: none;
  border: 0;
  font-size: 18px;
  font-weight: 500;
  color: #231815;
}

input::placeholder {
  color: #8B8B8B;
  font-weight: 400;
}

input:focus {
  outline: none;
  border: 0;
}



input[type=text],
input[type=password] {
  outline: 0;
  background: #FFFFFF;
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  height: 50px;
  box-sizing: border-box;
  padding: 0 25px;
  border: 0;
}

input[type=text]:disabled,
input[type=password]:disabled {
  background: #ccc;
}

.text_visible {
  position: relative;
}

.text_visible .eye {
  position: absolute;
  width: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
}

.wrong_msg {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.5rem 0 1.2rem;
  color: #FF4F4F;
  display: flex;
  align-items: center;
}

.wrong_msg img {
  width: 1rem;
  margin-right: 0.3rem;
}

@media (max-width:768px){
  /*input*/
  input {
    font-size: 14px;
  }

  input[type=text],
  input[type=password] {
    box-shadow: inset 0px 2px 3px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }

  input::placeholder{
    font-size: 14px;
  }
    
  .wrong_msg {
    font-size: 12px;
    line-height: 1.2;
  }
  .wrong_msg img{
    width:0.8rem;
    padding-top: 1%;
  }
  .btn_blue{
    font-size: 16px;
    height: 40px;
    line-height: 40px;
  }
}

/*layout*/
.inner_wrap {
  position: relative;
  margin: 0 auto;
  width: 1080px;
  max-width: 100%;
}

.inner_wrap h2 {
  font-size: 32px;
  font-weight: 700;
  width: 100%;
  height: 50px;
  line-height: 36px;
  display: block;
}

.inner_content {
  position: relative;
  margin: 0 auto;
  width: 90%;
  color: #fff;
}

/*page_info */
.page_info {
  color: #ffffff;
  font-size: 1.15rem;
}

.page_info a {
  color: #ffffff;
}

/*footer */
.footer {
  height: 100px;
  line-height: 100px;
  font-size: 16px;
  font-weight: 500;
  background: #0D2147;
  text-align: center;
  color: #fff;
  font-family: 'Inter';
}


@media (max-width: 900px) {
  .nav {
    background-color: #091834;
    line-height: 65px;
    height: 65px;
  }

  .nav .center_nav {
    position: absolute;
    width: 50%;
    right: -50%;
    height: 100vh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    transition: all 0.5s;
    padding-top: 17vw;
    box-sizing: border-box;
  }

  .nav .center_nav a {
    color: #777;
    font-weight: 400;
  }

  .nav .center_nav a.sign_in {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6vh;
    text-align: center;
    color: #fff;
    background-color: #aaa;
    border-radius: 4vw;
    margin: 0 auto;
    width: 30vw;
    height: 35px;
    font-size: 4vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav .center_nav .logged_in_mobile {
    display: block;
    color: #777;
  }

  .nav .logo {
    width: 50%;
    padding-left: 0;
  }

  .nav .logo img {
    width: 10rem;
    max-width: 100%;
  }

  .nav .link_right {
    position: relative;
    width: 50%;
    padding-right: 0;
  }

  .nav .link_right a {
    display: none
  }

  .nav .link_right .logged_in {
    display: none;
  }


  .nav .link_right .hamburger {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 5vw;
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    height: 17px;
    width: 22px;
  }

  .nav .link_right .hamburger span {
    height: 2px;
    background-color: #fff;
    transform-origin: left;
    transition: all 0.5s;
  }

  .nav .link_right .hamburger.active span {
    background-color: #777;
    height: 2px;
    transform-origin: left;
    transition: all 0.5s;
  }

  .nav .link_right .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
  }

  .nav .link_right .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .nav .link_right .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .inner_wrap{
    margin-top: 0;
    padding: 0 2%;
    box-sizing: border-box;
    margin-top: -55px;
  }

  .inner_wrap h2 {
    font-size: 24px;
    height: auto;
  }

  /*page_info */
  .page_info {
    font-size: 14px;
  }
}


/* index css*/
.index {
  position: relative;
  background-image: linear-gradient(to bottom, #0b1d3f 0%, #081730 42%, #081730 100%) !important;
}

.kv {
  overflow: hidden;
}

.bg_video {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 0;
}

.bg_video::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0D2147;
  top: 0;
  left: 0;
  opacity: 0.2;
}

.bg_video video {
  width: 100%;
}

.kv_wd {
  overflow: hidden;
  position: absolute;
  z-index: 20;
  top: 16vw;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
  font-size: 1.25vw;
  line-height: 2.5vw;
  white-space: pre-wrap;
}

.caret {
  border-left: 1px solid #fff;
  margin-left: 3px;
  animation: blink-caret 0.7s infinite;
}

@keyframes blink-caret {
  from {
    border-color: transparent;
  }

  to {
    border-color: #fff;
  }
}

.kv_wd_mob {
  display: none;
}

.scroll-downs {
  position: absolute;
  top: 20%;
  ;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mousey {
  width: 0.2vw;
  padding: 0.55vw 0.78vw;
  height: 1.83vw;
  border: 0.15vw solid #fff;
  border-radius: 1vw;
  opacity: 0.75;
  box-sizing: content-box;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.scroller {
  width: 0.15vw;
  height: 0.5vw;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15, .41, .69, .94);
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
  }

  10% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

.index-content {
  display: block;
  position: relative;
  height: auto;
  width: 100%;
  margin: -9vw auto 0;
  z-index: 10;
  color: #fff;
  background: url(../img/BG1.jpg) no-repeat;
  background-size: cover;
  background-position: center 8vw;
}


.index-tit {
  font-size: 40px;
  text-align: center;
  padding: 0 0 0.5vw;
  font-weight: 500;
}

.zone2 .index-tit {
  padding-top: 10vw;
}

.index-tit2 {
  font-size: 16px;
  text-align: center;
  margin-top: 0.5%;
  margin-bottom: 1.5%;
}

.about {
  width: 800px;
  max-width: 90%;
  height: 22rem;
  display: flex;
  justify-content: center;
  margin: auto;
  border-radius: 25px;
  align-items: center;
  background: #fff;
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
}

.about_img {
  width: 55%;
  border-radius: 20px;
  transform: translateX(-3.3vw);
}

.blog-slider {
  position: relative;
  width: 45%;
  height: 100%;
  margin: auto;
  padding: 0 25px;
  transition: all 0.3s;
}

.zone3 {
  margin: auto;
  max-width: 900px;
  width: 90%;
  padding-top: 10vw;
}

.zone3 .item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  width: 100%;
}

.zone3 .item .info {
  width: 55%;
  font-size: 1.2rem;
  line-height: 2.2rem;
}

.zone3 .item .info:nth-child(2) {
  display: flex;
  justify-content: flex-end;
}

.zone3 .item img {
  width: 45%;
}

.zone4 {
  width: 100%;
  padding: 10rem 0 0 0;
}

.zone4 .partner-wrapper {
  width: 100%;
  background-color: #fff;
  padding: 3.6rem 0;
  margin-top: 3rem;
}

.zone4 .partner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  text-align: center;
}

.zone4 .partner img {
  width: 8vw;
  padding: 0 2vw;
}

.zone4 .partner img:nth-child(2) {
  width: 6vw;
}

.zone4 .partner img:nth-child(3) {
  width: 5vw;
}

.zone4 .partner img:nth-child(4) {
  width: 5vw;
}

.zone5 {
  padding-top: 5rem;
}

.zone5 .team {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  width: 100%;
  margin: auto;
  padding: 2rem 0 10rem;
  gap: 1.5rem;
}

.zone5 .team .item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  line-height: 1.5rem;
}

.zone5 .team img {
  width: 8rem;
  margin-right: 1rem;
}


@media (max-width: 900px) {
  .kv-bottom-bg {
    height: 19.5vw;
  }

  .index-content {
    background: url(../img/BG1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    margin: -3vw auto 0;
  }

  .about {
    flex-direction: column;
    height: 105vw;
    margin: 7vw auto;
  }

  .about_img {
    width: 80%;
    transform: translateX(0);
    padding-top: 2rem;
  }

  .scroll-downs {
    top: 59%;
  }

  .mousey {
    width: 5.1vw;
    height: 9.3vw;
    border-radius: 4vw;
    border: 0.45vw solid #fff;
  }

  .scroller {
    width: 0.5vw;
    height: 2.5vw;
  }

  .wrapper.kv {
    height: 120vw;
    background: url('../img/kv_mob.jpg') no-repeat;
    background-size: cover;
  }

  .bg_video {
    left: -56.5vw;
    width: 214vw;
  }

  .kv_wd {
    top: 46vw;
    font-size: 3.5vw;
    line-height: 9.5vw;
  }

  .kv_wd_mob {
    display: block;
  }

  .kv_wd_pc {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .index-tit {
    font-size: 9vw;
    padding: 0 0 3vw;
  }

  .blog-slider {
    width: 90%;
    transition: none;
    padding: 0;
  }

  .wrapper.kv {
    height: 120vw;
  }

  .kv_wd {
    top: 46vw;
    font-size: 3.5vw;
    line-height: 9.5vw;
    font-size: 3vw;
    line-height: 7vw;
  }

  .kv_wd_pc {
    display: none;
  }

  .kv_wd_mob {
    display: block;
  }


  .bg_video {
    left: -56.5vw;
    width: 214vw;
  }

  .zone3 .item {
    flex-direction: column-reverse;
    padding: 2rem 0;
  }

  .zone3 .item.item2 {
    flex-direction: column;
  }

  .zone3 .item .info {
    display: flex;
    justify-content: center;
  }

  .zone3 .item .info:nth-child(2) {
    justify-content: center;
  }



  .zone3 .item img {
    width: 70%;
    margin-bottom: 2rem;
  }

  .zone3 .item .info {
    width: 90%;
    font-size: 1rem;
  }

  .zone4 .partner-wrapper {
    padding: 8vw 0;
    margin-top: 7vw;
  }

  .zone4 .partner img {
    width: 16vw;
    padding: 0 2vw;
  }

  .zone4 .partner img:nth-child(2) {
    width: 14vw;
  }

  .zone4 .partner img:nth-child(3) {
    width: 13vw;
  }

  .zone4 .partner img:nth-child(4) {
    width: 13vw;
  }

  .zone5 {
    padding-top: 2rem;
  }

  .zone5 .team {
    flex-direction: column;
    gap: 4rem;
    padding: 2rem 0 5rem;
  }

  .zone5 .team .item {
    width: 80%;
    gap: 1rem;
    flex-direction: column;
  }

  .zone5 .team .item .info {
    line-height: 1.5rem;
    margin: auto;
  }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider {
    height: 350px;
  }
}

.blog-slider__item {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .blog-slider__item {
    flex-direction: column;
  }
}

.blog-slider__item.swiper-slide-active .blog-slider__img img {
  opacity: 1;
  transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>* {
  opacity: 1;
  transform: none;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(1) {
  transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(2) {
  transition-delay: 0.4s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(3) {
  transition-delay: 0.5s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(4) {
  transition-delay: 0.6s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(5) {
  transition-delay: 0.7s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(6) {
  transition-delay: 0.8s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(7) {
  transition-delay: 0.9s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(8) {
  transition-delay: 1s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(9) {
  transition-delay: 1.1s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(10) {
  transition-delay: 1.2s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(11) {
  transition-delay: 1.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(12) {
  transition-delay: 1.4s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(13) {
  transition-delay: 1.5s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(14) {
  transition-delay: 1.6s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(15) {
  transition-delay: 1.7s;
}

.blog-slider__content {
  padding-right: 3.2rem;
}


.blog-slider__content>* {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s;
}

.blog-slider__code {
  color: #09162e;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
  font-size: 14px;
}

.blog-slider__title {
  font-size: 30px;
  font-weight: 700;
  color: #09162e;
  margin-bottom: 5px;
}

.blog-slider__text {
  color: #09162e;
  margin-bottom: 30px;
  line-height: 1.5em;
  font-size: 16px;
}

.blog-slider__button {
  display: inline-flex;
  background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  padding: 15px 35px;
  border-radius: 50px;
  color: #fff;
  box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4);
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {

  .blog-slider__title {
    font-size: 5vw;
  }

  .blog-slider__content {
    text-align: center;
    padding: 6vw 0 0;
  }

  .blog-slider__text {
    margin-bottom: 0;
    font-size: 3vw;
  }

  .blog-slider__code {
    font-size: 3vw;
    margin-bottom: 2.5vw;
  }
}


@media screen and (max-width: 576px) {
  .blog-slider__button {
    width: 100%;
  }
}

.blog-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.blog-slider .swiper-pagination-custom,
.blog-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.blog-slider__pagination {
  position: absolute;
  z-index: 21;
  right: 20px;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 50%;
  bottom: auto !important;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .blog-slider__pagination {
    right: 0;
    top: 42vw;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(0);
  }
}

.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}

@media screen and (max-width: 768px) {
  .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}

.blog-slider__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 10px;
  background: #062744;
  opacity: 0.4;
  transition: all 0.3s;
}

.blog-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #22b3c0;
  height: 35px;
  box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}

@media screen and (max-width: 768px) {
  .blog-slider__pagination .swiper-pagination-bullet-active {
    height: 11px;
    width: 30px;
  }
}

.swiper-pagination-bullet {
  margin: 5px 5px !important;
}


.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.ser-con {
  display: block;
  position: relative;
  padding: 3rem 0;
  margin: auto;
  max-width: 1000px;
  width: 90%;

}

.ser-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  margin-bottom: 2.5rem;
}

.icon-wrapper img {
  display: block;
  position: relative;
  width: 100%;
}

.icon-wrapper img {
  max-width: 66px;
  text-align: center;
  margin: 0 auto;
}

.ser-item h2 {
  font-size: 24px;
  color: #fff;
  line-height: 1.3rem;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.ser-item p {
  width: 80%;
  font-size: 14px;
  color: #999999;
  line-height: 1rem;
  letter-spacing: 1px;
  text-align: center;
  margin: 1rem auto;
}

@media screen and (max-width: 768px) {
  .ser-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .ser-item p {
    line-height: 1.3rem;
    letter-spacing: 1px;
    text-align: justify;
  }
}